我正在使用基于 Eclipse 3.7 的 springsource 工具套件 2.7.2。Maven 插件现在与 Eclipse 一起开箱即用,这很棒,即使是以前版本的 Eclipse 也会出现这个问题。
所以这是我的问题:
我已经在我的settings.xml文件中设置了代理信息,并且在命令行上 Maven 工作得很好。我还在 Eclipse 配置本身中设置了相同的代理详细信息,并且我知道它是正确的,并且更新可以使用它而不是没有。
settings.xml
当然,我的 Eclipse 安装中的 Maven 插件设置为使用正确的settings.xml文件。
但是 Eclipse 中的 maven 只是不使用这两个地方的代理设置,每次我更改 pom 文件时都非常烦人。有没有人有这个问题的解决方案?
这是我的 settings.xml 文件:
<?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <profiles> <profile> <id>general</id> <repositories> <repository> <snapshots><enabled>false</enabled></snapshots> <id>ibiblio</id> <name>Maven ibiblio</name> <url>http://www.ibiblio.org/maven2</url> </repository> <repository> <snapshots><enabled>true</enabled></snapshots> <id>ibiblio2</id> <name>Maven ibiblio2</name> <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url> </repository> <repository> <snapshots><enabled>true</enabled></snapshots> <id>maven</id> <name>Maven sunsite</name> <url>http://repo1.maven.org/maven2/</url> </repository> <repository> <snapshots><enabled>true</enabled></snapshots> <id>jboss</id> <name>Maven jboss</name> <url>http://repository.jboss.org/maven2/</url> </repository> </repositories> </profile> </profiles> <activeProfiles> <activeProfile>general</activeProfile> </activeProfiles> <proxies> <proxy> <id>proxy</id> <active>true</active> <protocol>http</protocol> <host>myproxyserver</host> <port>80</port> <username>myusername</username> <password>mypassword</password> </proxy> </proxies> </settings>
Maven 插件使用可以设置配置的设置文件。它的路径在 Eclipse 中可用Window|Preferences|Maven|User Settings。如果该文件不存在,请创建它并放入如下内容:
Window|Preferences|Maven|User Settings
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <localRepository/> <interactiveMode/> <usePluginRegistry/> <offline/> <pluginGroups/> <servers/> <mirrors/> <proxies> <proxy> <id>myproxy</id> <active>true</active> <protocol>http</protocol> <host>192.168.1.100</host> <port>6666</port> <username></username> <password></password> <nonProxyHosts>localhost|127.0.0.1</nonProxyHosts> </proxy> </proxies> <profiles/> <activeProfiles/> </settings>
编辑文件后,只需单击Update Settings按钮即可完成。我刚刚完成它并且它有效:)
Update Settings